home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / m / fabs.c < prev    next >
Text File  |  1988-10-23  |  1KB  |  46 lines

  1. /* 
  2.  * fabs.c --
  3.  *
  4.  *    Source code for the "fabs" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/m/RCS/fabs.c,v 1.1 88/10/23 14:57:23 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * fabs --
  25.  *
  26.  *    Return the absolute value of a floating-point number
  27.  *
  28.  * Results:
  29.  *    Absolute value of x.
  30.  *
  31.  * Side effects:
  32.  *    None.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. double
  38. fabs(x)
  39.     double x;
  40. {
  41.     if (x < 0) {
  42.     return -x;
  43.     }
  44.     return x;
  45. }
  46.